cabal2nix-2.8.2: test/golden-test-cases/system-argv0.nix.golden
{ mkDerivation, base, bytestring, fetchurl, system-filepath, text
}:
mkDerivation {
pname = "system-argv0";
version = "0.1.1";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [ base bytestring system-filepath text ];
homepage = "https://john-millikin.com/software/haskell-filesystem/";
description = "Get argv[0] as a FilePath";
license = stdenv.lib.licenses.mit;
}