mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Adding icoutils
svn path=/nixpkgs/trunk/; revision=31265
This commit is contained in:
parent
b15381fcf6
commit
8fadcd285a
19
pkgs/tools/graphics/icoutils/default.nix
Normal file
19
pkgs/tools/graphics/icoutils/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl, libpng }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "icoutils-0.29.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://savannah/icoutils/${name}.tar.bz2";
|
||||
sha256 = "180yqv41yc3fi6ggx7azhmaciqzadj0ir87wajigmcpgxkjk6v34";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.nongnu.org/icoutils/
|
||||
description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files";;
|
||||
license = "GPLv3+";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -852,6 +852,8 @@ let
|
||||
|
||||
iasl = callPackage ../development/compilers/iasl { };
|
||||
|
||||
icoutils = callPackage ../tools/graphics/icoutils { };
|
||||
|
||||
idutils = callPackage ../tools/misc/idutils { };
|
||||
|
||||
iftop = callPackage ../tools/networking/iftop { };
|
||||
|
Loading…
Reference in New Issue
Block a user