nixpkgs/pkgs/applications/misc/with-shell/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

21 lines
578 B
Nix

{ 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;
};
}