mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
* Added upstart.
svn path=/nixpkgs/trunk/; revision=7069
This commit is contained in:
parent
1e384ef2f2
commit
f6b48bee54
9
pkgs/os-specific/linux/upstart/default.nix
Normal file
9
pkgs/os-specific/linux/upstart/default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "upstart-0.3.0";
|
||||
src = fetchurl {
|
||||
url = http://upstart.ubuntu.com/download/upstart-0.3.0.tar.bz2;
|
||||
md5 = "269046f41c6418225306280044a799eb";
|
||||
};
|
||||
}
|
@ -2217,6 +2217,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
upstart = import ../os-specific/linux/upstart {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
usbutils = import ../os-specific/linux/usbutils {
|
||||
inherit fetchurl stdenv libusb;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user