mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
add cpio
svn path=/nixpkgs/trunk/; revision=3752
This commit is contained in:
parent
e468256879
commit
dffe1406a0
@ -124,6 +124,10 @@ rec {
|
||||
j2re = blackdown;
|
||||
};
|
||||
|
||||
cpio = (import ../tools/archivers/cpio) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
gnutar = (import ../tools/archivers/gnutar) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
@ -260,6 +264,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
bashDiet = (import ../shells/bash-diet) {
|
||||
inherit fetchurl stdenv dietgcc;
|
||||
};
|
||||
|
||||
|
||||
### DEVELOPMENT
|
||||
|
||||
|
9
pkgs/tools/archivers/cpio/default.nix
Normal file
9
pkgs/tools/archivers/cpio/default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "cpio-2.6";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.gnu.org/pub/gnu/cpio/cpio-2.6.tar.bz2;
|
||||
md5 = "25e0e8725bc60ed3460c9cde92752674";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user