mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
crudini: init at 0.9
This commit is contained in:
parent
d46fe334ca
commit
f09a73896b
22
pkgs/tools/misc/crudini/default.nix
Normal file
22
pkgs/tools/misc/crudini/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchFromGitHub, python2Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
name = "crudini-${version}";
|
||||
version = "0.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pixelb";
|
||||
repo = "crudini";
|
||||
rev = version;
|
||||
sha256 = "0x9z9lsygripj88gadag398pc9zky23m16wmh8vbgw7ld1nhkiav";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python2Packages; [ iniparse ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A utility for manipulating ini files ";
|
||||
homepage = http://www.pixelbeat.org/programs/crudini/;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
};
|
||||
}
|
|
@ -798,6 +798,8 @@ with pkgs;
|
|||
|
||||
crunch = callPackage ../tools/security/crunch { };
|
||||
|
||||
crudini = callPackage ../tools/misc/crudini { };
|
||||
|
||||
daemontools = callPackage ../tools/admin/daemontools { };
|
||||
|
||||
dante = callPackage ../servers/dante { };
|
||||
|
|
Loading…
Reference in a new issue