uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
30
pkgs/applications/misc/et/default.nix
Normal file
30
pkgs/applications/misc/et/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, libnotify, gdk-pixbuf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "et";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "oxzi";
|
||||
repo = "et";
|
||||
rev = version;
|
||||
sha256 = "0i0lgmnly8n7y4y6pb10pxgxyz8s5zk26k8z1g1578v1wan01lnq";
|
||||
};
|
||||
|
||||
buildInputs = [ libnotify gdk-pixbuf ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp et $out/bin
|
||||
cp et-status.sh $out/bin/et-status
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Minimal libnotify-based (egg) timer";
|
||||
homepage = "https://github.com/oxzi/et";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ oxzi ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue