mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
commit
b374239e20
2 changed files with 22 additions and 0 deletions
20
pkgs/applications/misc/with-shell/default.nix
Normal file
20
pkgs/applications/misc/with-shell/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
stdenv.mkDerivation {
|
||||
name = "with-2016-08-20";
|
||||
src = fetchFromGitHub {
|
||||
owner = "mchav";
|
||||
repo = "With";
|
||||
rev = "cc2828bddd92297147d4365765f4ef36385f050a";
|
||||
sha256 = "10m2xv6icrdp6lfprw3a9hsrzb3bip19ipkbmscap0niddqgcl9b";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp with $out/bin/with
|
||||
'';
|
||||
meta = {
|
||||
homepage = "https://github.com/mchav/With";
|
||||
description = "Command prefixing for continuous workflow using a single tool";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -17525,6 +17525,8 @@ in
|
|||
inherit (gnome2) zenity;
|
||||
};
|
||||
|
||||
with-shell = callPackage ../applications/misc/with-shell { };
|
||||
|
||||
wmutils-core = callPackage ../tools/X11/wmutils-core { };
|
||||
|
||||
wraith = callPackage ../applications/networking/irc/wraith { };
|
||||
|
|
Loading…
Reference in a new issue