mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Added updated gdmap
svn path=/nixpkgs/trunk/; revision=12115
This commit is contained in:
parent
4577779af6
commit
c888ed7499
1 changed files with 23 additions and 0 deletions
23
pkgs/tools/system/gdmap/0.8.1.nix
Normal file
23
pkgs/tools/system/gdmap/0.8.1.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
args : with args;
|
||||
let localDefs = builderDefs {
|
||||
src = /* put a fetchurl here */
|
||||
fetchurl {
|
||||
url = http://downloads.sourceforge.net/gdmap/gdmap-0.8.1.tar.gz;
|
||||
sha256 = "0nr8l88cg19zj585hczj8v73yh21k7j13xivhlzl8jdk0j0cj052";
|
||||
};
|
||||
|
||||
buildInputs = [gtk pkgconfig libxml2 intltool gettext];
|
||||
configureFlags = [];
|
||||
} null; /* null is a terminator for sumArgs */
|
||||
in with localDefs;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gdmap"+version;
|
||||
builder = writeScript (name + "-builder")
|
||||
(textClosure localDefs [doConfigure doMakeInstall doForceShare doPropagate]);
|
||||
meta = {
|
||||
description = "
|
||||
Recursive rectangle map of disk usage.
|
||||
";
|
||||
inherit src;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue