Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 457 B view raw
1{stdenv, fetchurl} : 2 3stdenv.mkDerivation { 4 name = "mockobjects-0.09"; 5 builder = ./builder.sh; 6 7 src = fetchurl { 8 url = mirror://sourceforge/mockobjects/mockobjects-bin-0.09.tar; 9 sha256 = "18rnyqfcyh0s3dwkkaszdd50ssyjx5fa1y3ii309ldqg693lfgnz"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "Generic unit testing framework and methodology for testing any kind of code"; 14 platforms = platforms.unix; 15 license = licenses.asl20; 16 }; 17}