Update Compiz
This commit is contained in:
30
pkgs/development/tools/misc/intltool/default.nix
Normal file
30
pkgs/development/tools/misc/intltool/default.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{stdenv, fetchurl, perl, perlXMLParser}:
|
||||
let
|
||||
s = # Generated upstream information
|
||||
rec {
|
||||
baseName="intltool";
|
||||
version="0.50.2";
|
||||
name="intltool-0.50.2";
|
||||
hash="01j4yd7i84n9nk4ccs6yifg84pp68nr9by57jdbhj7dpdxf5rwk7";
|
||||
url="https://launchpad.net/intltool/trunk/0.50.2/+download/intltool-0.50.2.tar.gz";
|
||||
sha256="01j4yd7i84n9nk4ccs6yifg84pp68nr9by57jdbhj7dpdxf5rwk7";
|
||||
};
|
||||
propagatedBuildInputs = [perl perlXMLParser];
|
||||
buildInputs = [];
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
inherit (s) name version;
|
||||
src = fetchurl {
|
||||
inherit (s) url sha256;
|
||||
};
|
||||
inherit propagatedBuildInputs buildInputs;
|
||||
|
||||
meta = {
|
||||
description = "Translation helper tool";
|
||||
homepage = "http://launchpad.net/intltool/";
|
||||
license = stdenv.lib.licenses.gpl2plus;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
inherit (s) version;
|
||||
};
|
||||
}
|
||||
1
pkgs/development/tools/misc/intltool/default.upstream
Normal file
1
pkgs/development/tools/misc/intltool/default.upstream
Normal file
@@ -0,0 +1 @@
|
||||
url https://launchpad.net/intltool/+download
|
||||
Reference in New Issue
Block a user