about summary refs log tree commit diff
path: root/pkgs/applications/video/xvidcap
AgeCommit message (Collapse)AuthorFilesLines
2021-11-07pkgs/applications: rename name to pname&version part 2Felix Buehler1-9/+31
2021-01-16pkgs/applications: pkgconfig -> pkg-configBen Siraphob1-2/+2
2021-01-15pkgs/applications: stdenv.lib -> libBen Siraphob1-1/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-2/+2
2018-10-12perlXMLParser -> perlPackages.XMLParservolth1-5/+5
2017-09-21treewide: Manual fix more pkg-config build-inputsJohn Ericson1-1/+3
2016-09-12treewide: explicitly specify gtk and related package versionsKirill Boltaev1-2/+2
2016-06-20Captialize meta.description of all packagesBjørn Forsman1-1/+1
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
2014-09-17add xvidcap to the channel for linuxDomen Kožar1-3/+8
2014-07-28Turn some license strings into lib.licenses valuesMateusz Kowalczyk1-1/+1
2009-05-06Adding a patch I forgot needed for the xvidcap expressionLluís Batlle i Rossell1-0/+15
svn path=/nixpkgs/trunk/; revision=15479
2009-05-03Updating xvidcap.Lluís Batlle i Rossell1-7/+8
svn path=/nixpkgs/trunk/; revision=15432
2008-10-14added meta tag to xvidcapMarc Weber1-0/+6
svn path=/nixpkgs/trunk/; revision=13071
2007-08-27* Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra1-1/+1
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
2006-12-01* Xvidcap for making screen recordings.Eelco Dolstra1-0/+16
svn path=/nixpkgs/trunk/; revision=7186